home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 46
/
Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso
/
-in_the_mag-
/
reader_requests
/
scilab
/
tests
/
pause.dia.ref
< prev
next >
Wrap
Text File
|
1999-09-16
|
1KB
|
65 lines
a=1;
deff('[x]=tata(y)','x=-y,write(%io(2),''enter quit''),pause,x=+20')
xx=tata(10);
enter quit
quit;
if 10+xx<>0 then bugmes();quit;end
b=2;
deff('[x]=tata(y)',['x=-y'
'write(6,''enter return'')'
'pause'
'x=+20'])
Warning :redefining function: tata
xx=tata(0);
enter return
return
if 20-xx<>0 then bugmes();quit;end
deff('[x]=tata(y)','x=-y,write(6,''type x=resume(0)''),pause')
Warning :redefining function: tata
xx=tata(40);
type x=resume(0)
x=resume(0)
if xx<>0 then bugmes();quit;end
clear x
text=['after quit '
'undefined variable x']
text =
!after quit !
! !
!undefined variable x !
deff('[x]=toto(n)',['v=100'
'write(%io(2),text)'
'pause'
'x=n'])
write(%io(2),'enter abort (after receiving this message:)')
enter abort (after receiving this message:)
toto(0);
after quit
undefined variable x
abort